Folgenden Code suchen:
             <td class="dataTableHeadingContent" align="center" nowrap valign="top">
                <?php echo TABLE_HEADING_BRANDING.xtc_sorting(FILENAME_CATEGORIES,'branding'); ?>
             </td>


Danach folgendes Einfügen:
             <?php
              if($_GET['cPath'] == '0' || !isset($_GET['cPath'])){
             ?>
             <td class="dataTableHeadingContent" align="center"  valign="top">
                <?php echo TABLE_HEADING_DOMAIN; ?>
             </td>
             <?php
              }
             ?>

------------------------------------------------------------------------------------------------------------------------------

Folgenden Code suchen:
             <td class="categories_view_data" style="text-align: left; padding-left: 5px;">
             <?php 
                echo '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . xtc_get_path($categories['categories_id'])) . '">' . xtc_image(DIR_WS_ICONS . 'folder.gif', ICON_FOLDER) . '<a>&nbsp;<b><a href="'.xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'cPath=' . $cPath . '&cID=' . $categories['categories_id']) .'">' . $categories['categories_name'] . '</a></b>'; 
             ?>
             </td>

Danach folgendes Einfügen:
             <?php
              if($_GET['cPath'] == '0' || !isset($_GET['cPath'])){
             ?>
             <td class="categories_view_data">
             <?php 
              $domain = xtc_get_domains($categories['categories_domain']);
              if(!is_array($domain))echo $domain;
             ?>
             </td>
             <?php
              }
             ?>